home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / printing / vbgprt / about.frm < prev    next >
Text File  |  1994-06-03  |  2KB  |  71 lines

  1. VERSION 2.00
  2. Begin Form frmAbout 
  3.    Caption         =   "About VBGPRINT"
  4.    ClientHeight    =   3810
  5.    ClientLeft      =   1095
  6.    ClientTop       =   1485
  7.    ClientWidth     =   6510
  8.    Height          =   4215
  9.    Left            =   1035
  10.    LinkTopic       =   "Form2"
  11.    ScaleHeight     =   3810
  12.    ScaleWidth      =   6510
  13.    Top             =   1140
  14.    Width           =   6630
  15.    Begin CommandButton cmdClose 
  16.       Caption         =   "&Close"
  17.       Default         =   -1  'True
  18.       Height          =   375
  19.       Left            =   2400
  20.       TabIndex        =   1
  21.       Top             =   3240
  22.       Width           =   1695
  23.    End
  24.    Begin Label Label3 
  25.       Caption         =   "Unger Business Systems"
  26.       Height          =   1575
  27.       Left            =   1560
  28.       TabIndex        =   3
  29.       Top             =   1440
  30.       Width           =   4815
  31.    End
  32.    Begin Label Label2 
  33.       Caption         =   "Copyright (C) 1994  Unger Business Systems   All rights reserved."
  34.       Height          =   375
  35.       Left            =   120
  36.       TabIndex        =   2
  37.       Top             =   120
  38.       Width           =   6255
  39.    End
  40.    Begin Label Label1 
  41.       Caption         =   "This demo program shows the capabilities of the VB Generalized Printer routines from Unger Business Systems.  For more information or to register these routines, please contact:"
  42.       Height          =   735
  43.       Left            =   120
  44.       TabIndex        =   0
  45.       Top             =   600
  46.       Width           =   6255
  47.    End
  48. End
  49. '----------------------------------------------------------------
  50. 'Copyright 1994   Unger Business Systems  All Rights Reserved
  51. 'This code is distributed as shareware.  If you use it, you
  52. 'are required by law to register it.  Please contact Unger
  53. 'Business Systems at 11926 Barrett Brae, Houston, TX 77072-4004
  54. 'or call (713) 498-8517.  Registration fee is $20.00 US
  55. 'See the README.TXT file for more information
  56. '
  57. 'All code, forms, modules, controls, etc. are provided without
  58. 'warranty or liability
  59. '----------------------------------------------------------------
  60.  
  61. Option Explicit
  62.  
  63. Sub cmdClose_Click ()
  64.     Unload Me
  65. End Sub
  66.  
  67. Sub Form_Load ()
  68.    Label3 = "Unger Business Systems" & CRLF & "11926 Barrett Brae" & CRLF & "Houston, TX  77072-4004" & CRLF & "Phone: (713) 498-8517" & CRLF & "Fax: (713) 498-8518" & CRLF & "CompuServe:  Guinn Unger  71053,2332"
  69. End Sub
  70.  
  71.